type crypto/aes.gcmAsm

6 uses

	crypto/aes (current package)
		aes_gcm.go#L55: 	g := &gcmAsm{ks: c.enc, nonceSize: nonceSize, tagSize: tagSize}
		aes_gcm.go#L60: type gcmAsm struct {
		aes_gcm.go#L73: func (g *gcmAsm) NonceSize() int {
		aes_gcm.go#L77: func (g *gcmAsm) Overhead() int {
		aes_gcm.go#L98: func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
		aes_gcm.go#L138: func (g *gcmAsm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {